* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero {
    width: 100%;
    min-height: 100vh;
    background-color: #fffd93;
    background-position: center;
    background-size: cover;
    padding: 10px 10%;
    overflow: hidden;
    position: relative;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    width:120px;
    border-radius:50%;
    cursor:pointer;
}

nav ul{
    display:flex;
    align-items:center;
    gap:25px;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:600;
    padding:8px 15px;
    border-radius:25px;
    transition:0.3s;
}

nav ul li a:hover{
    background:#000;
    color:#fff;
}

nav ul li a.active{
    background:#000;
    color:#fff;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 40px;
    color: #fff;
    background-image: linear-gradient(45deg, #e4e710, #9ca17e);
    border-radius: 30px;
    border-top-left-radius: 0;
    transition: 0.5s;
    font-size: 14px;
}

.btn:hover {
    border-top-left-radius: 30px;
    transform: translateY(-3px);
}

.feature-img {
    width: 420px;
    position: absolute;
    bottom: 0;
    right: 10%;
}

.feature-img.anim {
    animation-delay: 1.5s;
    height: 550px;
    width: 650px;
    margin-right: -120px;
    margin-bottom: 80px;
}

.anim {
    opacity: 0;
    transform: translateY(30px);
    animation: move-up 0.8s linear forwards;
}

@keyframes move-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    margin-top: 10%;
    max-width: 600px;
}

.content h1 {
    font-size: 70px;
    color: #000000;
    line-height: 80px;
}

.content p {
    margin: 20px 0 30px;
    color: #000000;
    line-height: 1.6;
    animation-delay: 0.5s;
}

.content .btn {
    padding: 15px 80px;
    font-size: 16px;
    animation-delay: 1s;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-icons a {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
}

.social-icons a:nth-child(1) {
    color: #1877F2;
}

.social-icons a:nth-child(2) {
    color: #E1306C;
}

.social-icons a:nth-child(3) {
    color: #000000;
}

.social-icons a:nth-child(4) {
    color: #FF0000;
}

.container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.container h2 {
    color: #000000;
    font-size: 30px;
    margin-bottom: 30px;
}

.slide {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
}

.slide::-webkit-scrollbar {
    height: 8px;
}

.slide::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
}

.card {
    min-width: 250px;
    height: 350px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    transition: .4s;
    flex-shrink: 0;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .content{
        text-align:center;
        margin-top:40px;
    }

    .content h1{
        font-size:45px;
        line-height:55px;
    }

    .feature-img{
        position:static;
        width:280px;
        height:auto;
        margin:30px auto;
        display:block;
    }

    .feature-img.anim{
        width:280px;
        height:auto;
        margin:30px auto;
    }
}

.home-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 30px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.home-btn:hover{
    background:#444;
    transform:translateY(-3px);
}